13f6239cdfdd7796ef156b78c119509c6203b0fa,cosmic-core/server/src/main/java/com/cloud/deploy/FirstFitPlanner.java,FirstFitPlanner,reorderClusters,#number#boolean#Pair#VirtualMachineProfile#DeploymentPlan#,397

Before Change


     */
    protected List<Long> reorderClusters(final long id, final boolean isZone, final Pair<List<Long>, Map<Long, Double>> clusterCapacityInfo, final VirtualMachineProfile vmProfile,
                                         final DeploymentPlan plan) {
        final List<Long> reordersClusterIds = clusterCapacityInfo.first();
        return reordersClusterIds;
    }

    /**

After Change


     */
    protected List<Long> reorderClusters(final long id, final boolean isZone, final Pair<List<Long>, Map<Long, Double>> clusterCapacityInfo, final VirtualMachineProfile vmProfile,
                                         final DeploymentPlan plan) {
        return clusterCapacityInfo.first();
    }

    /**